home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / movefile.zip / MOVEFILE.MAK < prev    next >
Text File  |  1993-01-04  |  494b  |  18 lines

  1. TCDIR=C:\TURBOC
  2. ILIB=C:\TURBOC\INCLUDE
  3. LLIB=C:\TURBOC\LIB
  4. MDL=t
  5.  
  6. movefile.com: movefile.exe
  7.    exe2bin movefile.exe movefile.com
  8.    erase movefile.exe
  9.    
  10. movefile.exe: movefile.obj exparg.obj
  11.    $(TCDIR)\tlink /x $(LLIB)\c0$(MDL) movefile exparg,movefile,,$(LLIB)\cs
  12.    
  13. exparg.obj: exparg.c
  14.    $(TCDIR)\tcc -c -m$(MDL) -f- -G -K -O -g100 -I$(ILIB) -L$(LLIB) exparg.c
  15.    
  16. movefile.obj: movefile.c
  17.    $(TCDIR)\tcc -c -m$(MDL) -f- -G -K -O -g100 -I$(ILIB) -L$(LLIB) movefile.c
  18.